home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CUJ9209.ARJ / 1009054C < prev    next >
Text File  |  1992-07-23  |  258b  |  14 lines

  1.  
  2. /*********** hello2.c *****************/
  3.  
  4. #include <stdio.h>
  5.  
  6. again(char *ss)
  7. {
  8.    printf("\nHello again from power C");
  9.    printf("\nHello again from power C -%s-", ss);
  10.    printf("\nHello again from power C");
  11. }
  12.  
  13. /*********** end of hello2.c ***********/
  14.